# This is a BitKeeper generated patch for the following project: # Project Name: Linux kernel tree # This patch format is intended for GNU patch command version 2.5 or higher. # This patch includes the following deltas: # ChangeSet 1.1388 -> 1.1389 # drivers/acpi/osl.c 1.39 -> 1.40 # # The following is the BitKeeper ChangeSet Log # -------------------------------------------- # 03/06/23 davidm@wailua.hpl.hp.com 1.1389 # osl.c: # (acpi_os_readable): Correct type of 2nd arg to acpi_size. # -------------------------------------------- # diff -Nru a/drivers/acpi/osl.c b/drivers/acpi/osl.c --- a/drivers/acpi/osl.c Fri Jun 27 22:42:35 2003 +++ b/drivers/acpi/osl.c Fri Jun 27 22:42:35 2003 @@ -941,7 +941,7 @@ /* Assumes no unreadable holes inbetween */ BOOLEAN -acpi_os_readable(void *ptr, u32 len) +acpi_os_readable(void *ptr, acpi_size len) { #if defined(__i386__) || defined(__x86_64__) char tmp; @@ -951,7 +951,7 @@ } BOOLEAN -acpi_os_writable(void *ptr, u32 len) +acpi_os_writable(void *ptr, acpi_size len) { /* could do dummy write (racy) or a kernel page table lookup. The later may be difficult at early boot when kmap doesn't work yet. */